RequestEnableBluetooth.fromMap constructor

RequestEnableBluetooth.fromMap(
  1. Map map
)

Implementation

factory RequestEnableBluetooth.fromMap(Map<dynamic, dynamic> map) {
  final String type = map['type'];
  return RequestEnableBluetooth(type);
}