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
Aswitch-like method, using callbacks. -
mapOrNull<
TResult extends Object?> (TResult? $default(_TranslationResponse value)?) → TResult? -
Available on RemoteTranslationResponse, provided by the RemoteTranslationResponsePatterns extension
A variant ofmapthat fallback to returningnull. -
maybeMap<
TResult extends Object?> (TResult $default(_TranslationResponse value)?, {required TResult orElse()}) → TResult -
Available on RemoteTranslationResponse, provided by the RemoteTranslationResponsePatterns extension
A variant ofmapthat fallback to returningorElse. -
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 ofwhenthat fallback to anorElsecallback. -
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
Aswitch-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 ofwhenthat fallback to returningnull
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited