copyWith method

Text copyWith({
  1. String? text,
  2. dynamic extra,
  3. int? clientId,
})

Implementation

Text copyWith({
  String? text,
  dynamic extra,
  int? clientId,
}) =>
    Text(
      text: text ?? this.text,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );