TranslationRequest class abstract
A request model for translation services.
Contains the original text to be translated along with language codes for both the original and target languages.
- Annotations
-
- @freezed
Constructors
- TranslationRequest({required String originalText, required String originalLanguageCode, required String translatedLanguageCode})
-
Creates a new TranslationRequest.
constfactory
-
TranslationRequest.fromJson(Map<
String, dynamic> json) -
Creates a new TranslationRequest from a JSON object.
factory
Properties
-
copyWith
→ $TranslationRequestCopyWith<
TranslationRequest> -
Create a copy of TranslationRequest
with the given fields replaced by the non-null parameter values.
no setterinherited
- hashCode → int
-
The hash code for this object.
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
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
Serializes this TranslationRequest to a JSON map.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited