Recipient constructor

const Recipient({
  1. String? action,
  2. String? address,
  3. List<Object>? args,
})

Implementation

const factory Recipient({
  /// Name of the action
  String? action,

  /// Contract's address
  String? address,

  /// List of arguments for the action (must contain only JSON valid data)
  List<Object>? args,
}) = _Recipient;