UsersShared constructor
const
UsersShared({
- @JsonKey(name: 'request_id') required int requestId,
- @JsonKey(name: 'users') required List<
SharedUser> users,
Constructs a UsersShared object
Implementation
const factory UsersShared({
/// Identifier of the request
@JsonKey(name: 'request_id') required int requestId,
/// Identifiers of the shared users. These numbers may have more than 32
/// significant bits and some programming languages may have
/// difficulty/silent defects in interpreting them. But they have at most 52
/// significant bits, so 64-bit integers or double-precision float types are
/// safe for storing these identifiers. The bot may not have access to the
/// users and could be unable to use these identifiers, unless the users are
/// already known to the bot by some other means.
@JsonKey(name: 'users') required List<SharedUser> users,
}) = _UsersShared;