RequiredNamespace constructor

  1. @JsonSerializable(includeIfNull: false)
const RequiredNamespace({
  1. List<String>? chains,
  2. required List<String> methods,
  3. required List<String> events,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory RequiredNamespace({
  List<String>? chains,
  required List<String> methods,
  required List<String> events,
}) = _RequiredNamespace;