Definition at line 17 of file FlutterSpellCheckPlugin.mm.
◆ initWithMisspelledRange:suggestions:
- (instancetype) initWithMisspelledRange: |
|
(NSRange) |
range |
suggestions: |
|
(NSArray<NSString*>*) |
NS_DESIGNATED_INITIALIZER |
|
|
| |
Definition at line 32 of file FlutterSpellCheckPlugin.mm.
146 :(NSRange)range
148 self = [super init];
149 if (self) {
150 _suggestions = [suggestions copy];
151 _misspelledRange = range;
152 }
153 return self;
154}
NSArray< NSString * > * suggestions
◆ NS_UNAVAILABLE [1/2]
- (instancetype) NS_UNAVAILABLE |
|
|
|
◆ NS_UNAVAILABLE [2/2]
+ (instancetype) NS_UNAVAILABLE |
|
|
|
◆ toDictionary
- (NSDictionary< NSString *, NSObject * > *) toDictionary |
|
|
|
Definition at line 32 of file FlutterSpellCheckPlugin.mm.
156 {
157 return @{
158 @"startIndex" : @(_misspelledRange.location),
159
160
161
162 @"endIndex" : @(_misspelledRange.location + _misspelledRange.length),
163 @"suggestions" : _suggestions,
164 };
165}
◆ misspelledRange
- (NSRange) misspelledRange |
|
readnonatomicassign |
◆ suggestions
- (NSArray<NSString*>*) suggestions |
|
readnonatomiccopy |
The documentation for this class was generated from the following file: