MastodonFieldAttribute constructor

const MastodonFieldAttribute({
  1. required String name,
  2. required String value,
})

Creates with the given field name and value.

Implementation

const MastodonFieldAttribute({
  required this.name,
  required this.value,
});