StringResult constructor

StringResult(
  1. 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.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;
}