MetadataCreator constructor

const MetadataCreator({
  1. required Pubkey address,
  2. required bool verified,
  3. required u8 share,
})

An array of creators and their share of the royalties. This array is limited to 5 creators. Note that, because the Creators field is an array of variable length, we cannot guarantee the byte position of any field that follows (Notice the tilde ~ in the fields below). Each creator contains the following fields.

Implementation

const MetadataCreator({
  required this.address,
  required this.verified,
  required this.share,
});