FlCameraOptions.fromMap constructor

FlCameraOptions.fromMap(
  1. Map map
)

Implementation

FlCameraOptions.fromMap(Map<dynamic, dynamic> map) {
  textureId = map['textureId'] as int?;
  width = map['width'] as double?;
  height = map['height'] as double?;
}