StringResult constructor
StringResult(
- Map<String, dynamic> nativeStringResult
)
Implementation
StringResult(Map<String, dynamic> nativeStringResult) {
this.description = nativeStringResult['description'];
this.latin = nativeStringResult['latin'];
this.arabic = nativeStringResult['arabic'];
this.cyrillic = nativeStringResult['cyrillic'];
this.greek = nativeStringResult['greek'];
this.location = nativeStringResult['location'] != null? Location(Map<String, dynamic>.from(nativeStringResult['location'])) : null;
this.side = nativeStringResult['location'] != null? Side(Map<String, dynamic>.from(nativeStringResult['side'])) : null;
}