RequiredNamespace constructor

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

Implementation

const RequiredNamespace({
  this.chains,
  required this.methods,
  required this.events,
});