Skip to content

Commit

Permalink
plugin: update flutterdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
abarisain committed Nov 29, 2021
1 parent 7adcb5c commit 1b5785b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/batch_user.dart
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,8 @@ abstract class BatchUserDataEditor {
/// Attribute's key cannot be empty. It should be made of letters, numbers or underscores (\[a-z0-9_\])
/// and can't be longer than 30 characters.
///
/// While the value is an Uri instance, it must be a valid URL.
/// While the value is an Uri instance, it must be a valid URL and
/// must not be longer than 2048 characters.
///
/// Any attribute with an invalid key or value will be ignored.
BatchUserDataEditor setUrlAttribute(String key, Uri value);
Expand Down Expand Up @@ -326,7 +327,8 @@ class BatchEventData {
/// The attribute key should be a string composed of letters, numbers
/// or underscores (\[a-z0-9_\]) and can't be longer than 30 characters.
///
/// While the value is an Uri instance, it must be a valid URL.
/// While the value is an Uri instance, it must be a valid URL and
/// not be longer than 2048 characters.
BatchEventData putUrl(String key, Uri value) {
if (_validateAttributeKey(key)) {
_attributes[key.toLowerCase()] =
Expand Down

0 comments on commit 1b5785b

Please sign in to comment.