RichtextFacetByteSlice constructor

  1. @JsonSerializable.new(includeIfNull: false)
const RichtextFacetByteSlice({
  1. @Default.new('app.bsky.richtext.facet#byteSlice') String $type,
  2. required int byteStart,
  3. required int byteEnd,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory RichtextFacetByteSlice({
  @Default('app.bsky.richtext.facet#byteSlice') String $type,
  required int byteStart,
  required int byteEnd,

  Map<String, dynamic>? $unknown,
}) = _RichtextFacetByteSlice;