RemoteTranslationResponse class abstract
A response model for translation services.
Contains the original text, translated text, language codes, approval status, and timestamps.
- 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
-
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
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited