RemoteTranslationResponse class abstract

A response model for translation services.

Contains the original text, translated text, language codes, approval status, and timestamps.

Available extensions
Annotations
  • @freezed

Constructors

RemoteTranslationResponse({required String originalText, required String translatedText, required String originalLanguageCode, required String translatedLanguageCode, required bool isApproved, required DateTime createdAt, required DateTime updatedAt})
Creates a new RemoteTranslationResponse.
factory
RemoteTranslationResponse.fromJson(Map<String, dynamic> json)
Creates a new RemoteTranslationResponse from a JSON object.
factory

Properties

copyWith → $RemoteTranslationResponseCopyWith<RemoteTranslationResponse>
Create a copy of RemoteTranslationResponse with the given fields replaced by the non-null parameter values.
no setterinherited
createdAt DateTime
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
isApproved bool
no setterinherited
originalLanguageCode String
no setterinherited
originalText String
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
translatedLanguageCode String
no setterinherited
translatedText String
no setterinherited
updatedAt DateTime
no setterinherited

Methods

map<TResult extends Object?>(TResult $default(_TranslationResponse value)) → TResult

Available on RemoteTranslationResponse, provided by the RemoteTranslationResponsePatterns extension

A switch-like method, using callbacks.
mapOrNull<TResult extends Object?>(TResult? $default(_TranslationResponse value)?) → TResult?

Available on RemoteTranslationResponse, provided by the RemoteTranslationResponsePatterns extension

A variant of map that fallback to returning null.
maybeMap<TResult extends Object?>(TResult $default(_TranslationResponse value)?, {required TResult orElse()}) → TResult

Available on RemoteTranslationResponse, provided by the RemoteTranslationResponsePatterns extension

A variant of map that fallback to returning orElse.
maybeWhen<TResult extends Object?>(TResult $default(String originalText, String translatedText, String originalLanguageCode, String translatedLanguageCode, bool isApproved, DateTime createdAt, DateTime updatedAt)?, {required TResult orElse()}) → TResult

Available on RemoteTranslationResponse, provided by the RemoteTranslationResponsePatterns extension

A variant of when that fallback to an orElse callback.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Serializes this RemoteTranslationResponse to a JSON map.
inherited
toLocalTranslationModel() Translation
Converts the RemoteTranslationResponse to a Translation object.
toString() String
A string representation of this object.
inherited
when<TResult extends Object?>(TResult $default(String originalText, String translatedText, String originalLanguageCode, String translatedLanguageCode, bool isApproved, DateTime createdAt, DateTime updatedAt)) → TResult

Available on RemoteTranslationResponse, provided by the RemoteTranslationResponsePatterns extension

A switch-like method, using callbacks.
whenOrNull<TResult extends Object?>(TResult? $default(String originalText, String translatedText, String originalLanguageCode, String translatedLanguageCode, bool isApproved, DateTime createdAt, DateTime updatedAt)?) → TResult?

Available on RemoteTranslationResponse, provided by the RemoteTranslationResponsePatterns extension

A variant of when that fallback to returning null

Operators

operator ==(Object other) bool
The equality operator.
inherited