toDart method

RecordingOptions toDart()

Implementation

RecordingOptions toDart() {
  return RecordingOptions(
    codec: codec,
    fileType: fileType,
    bitRate: bitRate,
    maxDurationMs: maxDurationMs,
    maxFileSizeBytes: maxFileSizeBytes,
    latitude: latitude,
    longitude: longitude,
    altitude: altitude,
    hasLocation: hasLocation,
  );
}